Lender Price API
Locking a Loan Without LOS / 9. Request Post-Lock Price Concession / 9.5 Add Request Lock Event
In This Topic
    9.5 Add Request Lock Event
    In This Topic

    Path

    POST /rest/v1/lp-ppe-api/price-quote/addLockEvent
    

    Headers

    Authorization
    
    Bearer {{accessToken}}
    

    Body

    Copy Code
    {
      "priceQuoteId": "{{priceQuoteId}}",
      "lockId": "{{lockId}}",
      "lockStatusId": "{{exceptionStatusId}}",
      "lockEventExceptionInfo": {
        "id": "64669d4a50a71cba75ed8f27",
        "exceptionValueType": "Points",
        "requestType": "Request",
        "reason": "Rate Table Lead Source",
        "values": {
          "FEE": -0.7
        },
        "exceptionOverrideDifferences": null
      },
      "lockEventExtensionInfo": null,
      "scenario": null,
      "hasSellSide": false,
      "sellSideLine": null,
      "lockDateUpdate": null,
      "lockEventId": "{{lockEventId}}",
      "lockEventComment": "Whatever comment you would like."
    }

    Example Request

    Copy Code
    curl --location -g '{{protocol}}{{domain}}/rest/v1/lp-ppe-api/price-quote/addLockEvent' \
    --header 'Authorization: Bearer {{accessToken}}' \
    --data '{
      "priceQuoteId": "{{priceQuoteId}}",
      "lockId": "{{lockId}}",
      "lockStatusId": "{{exceptionStatusId}}",
      "lockEventExceptionInfo": {
        "id": "64669d4a50a71cba75ed8f27",
        "exceptionValueType": "Points",
        "requestType": "Request",
        "reason": "Rate Table Lead Source",
        "values": {
          "FEE": -0.7
        },
        "exceptionOverrideDifferences": null
      },
      "lockEventExtensionInfo": null,
      "scenario": null,
      "hasSellSide": false,
      "sellSideLine": null,
      "lockDateUpdate": null,
      "lockEventId": "{{lockEventId}}",
      "lockEventComment": "Whatever comment you would like."
    }'

    Example Response

    This request doesn't return a response body.